home *** CD-ROM | disk | FTP | other *** search
/ Creating Your Own America Online Web Pages / Creating Your Own America Online Web Pages.iso / TOOLS / WEBBER / HTML3.DTD < prev    next >
Encoding:
Text File  |  1996-06-11  |  47.9 KB  |  1,348 lines

  1. <!ENTITY % HTML.Version
  2.         "-//IETF//DTD HTML 3.0//EN"
  3.  
  4.         -- Typical usage:
  5.  
  6.             <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.0//EN">
  7.             <html>
  8.             ...
  9.             </html>
  10.         --
  11.         >
  12.  
  13. <!--================== Flags for Marked Sections ==========================-->
  14.  
  15. <!ENTITY % HTML.Recommended "IGNORE"
  16.         -- Certain features of the language are necessary for compatibility
  17.            with widespread usage, but they may compromise the structural
  18.            integrity of a document. This feature test entity enables
  19.            a more prescriptive document type definition that eliminates
  20.            the above features.
  21.         -->
  22.  
  23. <![ %HTML.Recommended [
  24.         <!ENTITY % HTML.Deprecated "IGNORE">
  25. ]]>
  26.  
  27. <!ENTITY % HTML.Deprecated "INCLUDE"
  28.         -- Certain features of the language are necessary for compatibility
  29.            with earlier versions of the specification, but they tend
  30.            to be used an implemented inconsistently, and their use is
  31.            deprecated. This feature test entity enables a document type
  32.            definition that eliminates these features.
  33.         -->
  34.         
  35. <!ENTITY % HTML.Obsoleted "IGNORE"
  36.         -- The XMP, LISTING and PLAINTEXT tags are incompatible with SGML
  37.            and derive from very early versions of HTML. They require non-
  38.            standard parsers and will cause problems for processing
  39.            documents with standard SGML tools.
  40.         -->
  41.  
  42. <!--================== Imported Names =====================================-->
  43.  
  44. <!ENTITY % Content-Type "CDATA"
  45.         -- meaning a MIME content type, as per RFC1521
  46.         -->
  47.  
  48. <!ENTITY % HTTP-Method "GET | POST"
  49.         -- as per HTTP specification
  50.         -->
  51.  
  52. <!ENTITY % URI "CDATA"
  53.         -- The term URI means a CDATA attribute
  54.            whose value is a Uniform Resource Identifier,
  55.            as defined by
  56.         "Uniform Resource Identifiers" by Tim Berners-Lee
  57.         aka http://info.cern.ch/hypertext/WWW/Addressing/URL/URI_Overview.html
  58.         aka RFC 1630
  59.  
  60.         Note that CDATA attributes are limited by the LITLEN
  61.         capacity (1024 in the current version of html.decl),
  62.         so that URIs in HTML have a bounded length.
  63.  
  64.         -->
  65.  
  66. <!ENTITY % Misc.Relations "stylesheet|node|path">
  67.  
  68. <!ENTITY % FLOAT "CDATA" -- floating point numbers (not in SGML) -->
  69.  
  70. <!ENTITY % SHAPE "CDATA" 
  71.     -- Shape of hotzone in image.
  72.  
  73.        All coordinates are assumed to be numbers in the range 0 to 1
  74.        and interpreted as fractional width/height and measured from
  75.        the top left corner of the associated image.
  76.  
  77.        The attribute value is a string taking one of the following forms:
  78.        
  79.                "default"
  80.                
  81.        Used to define a default link for the figure background.
  82.  
  83.             "circle x, y, r" 
  84.  
  85.        (x, y) define the center and r the radius.
  86.  
  87.             "rect x, y, w, h"
  88.  
  89.        (x, y) defines upper left, and w and h the width and height.
  90.  
  91.             "polygon x1, y1, x2, y2, ..."
  92.  
  93.        Given n pairs of x, y coordinates, the polygon is closed by a
  94.        line linking the n'th point to the first. Intersecting polygons
  95.        use the non-zero winding number rule to determine if a point lies
  96.        inside the polygon.I
  97.     --
  98. >
  99.  
  100. <!-- 3.0 Parameter Entities -->
  101.  
  102. <!ENTITY % heading "H1|H2|H3|H4|H5|H6">
  103.  
  104. <![ %HTML.Obsoleted [
  105.     <!ENTITY % preformatted "PRE | XMP | LISTING">
  106. ]]>
  107.  
  108.  
  109. <![ %HTML.Deprecated [
  110.     <!ENTITY % list "UL | OL | DIR | MENU">
  111.     <!ENTITY % blockquote "BLOCKQUOTE | BQ">
  112. ]]>
  113.  
  114. <!ENTITY % list "UL | OL">
  115.  
  116. <!ENTITY % blockquote "BQ">
  117.  
  118. <!ENTITY % preformatted "PRE">
  119.  
  120.  
  121. <!-- The CLASS attribute is used to subclass HTML elements for
  122.      rendering purposes, when used with style sheets, e.g. DSSSL lite -->
  123.  
  124. <!ENTITY % attrs
  125.        "id      ID       #IMPLIED  -- element identifier --
  126.         class   NAMES    #IMPLIED  -- for subclassing elements --
  127.         style   CDATA    #IMPLIED  -- rendering annotation --
  128.         lang    NAME     #IMPLIED  -- as per RFC 1766 --
  129.         dir   (ltr|rtl)  #IMPLIED  -- I18N text direction --">
  130.  
  131. <!-- SGML standard forces different NAMES for all attribute values
  132.      in the same element, regardless of the attribute name! As a result
  133.      CDATA is used for CLEAR attribute to avoid clash with ALIGN attribute.-->
  134.  
  135. <!--
  136. When text flows around a figure or table in the margin, you sometimes want
  137. to start an element like a header, paragraph or list below the figure rather
  138. than alongside it. The CLEAR attribute allows you to move down unconditionally:
  139.  
  140.     clear=left          move down until left margin is clear
  141.     clear=right         move down until right margin is clear
  142.     clear=all           move down until both margins are clear
  143.  
  144. Alternatively, you can decide to place the element alongside the figure just
  145. so long as there is enough room. The minimum width needed is specified as:
  146.  
  147.     clear="40 en"       move down until there is at least 40 en units free
  148.     clear="100 pixels"  move down until there is at least 100 pixels free
  149.     
  150. The style sheet (or browser defaults) may provide default minimum widths for
  151. each class of block-like elements.
  152. -->
  153.  
  154. <!ENTITY % needs -- Attributes for controlling text flow. Used in headers
  155.                     and other elements to guarantee sufficient room --
  156.         'clear  CDATA #IMPLIED'>
  157.  
  158. <!--
  159.     The following attribute may be included where ever a URL can be given:
  160.  
  161.     md      message digest e.g. md="md5:jV2OfH+nnXHU8bnkPAad/mSQlTDZ"
  162.             where the digest is base64 encoded and preceded by a prefix
  163.             denoting the algorithm (in this case MD5).
  164. -->
  165.  
  166. <!ENTITY % url.link -- Attributes associated with URL based links --
  167.         "md     CDATA  #IMPLIED  -- message digest for linked object --">
  168.  
  169. <!--================ Character mnemonic entities ==========================-->
  170.  
  171. <!-- The HTML list of Latin-1 entities includes the full range
  172.      of characters in widely available Latin-1 fonts, and as such
  173.      is a mixture of ISOlat1 and other ISO publishing symbols -->
  174.  
  175. <!ENTITY % HTMLlat1 PUBLIC
  176.   "ISO 8879-1986//ENTITIES Added Latin 1//EN//">
  177. %HTMLlat1;
  178.  
  179. <!--================ Entities for special symbols =========================-->
  180.  
  181. <!ENTITY amp CDATA "&"     -- ampersand          -->
  182. <!ENTITY gt CDATA ">"      -- greater than       -->
  183. <!ENTITY lt CDATA "<"      -- less than          -->
  184. <!ENTITY quot CDATA """    -- double quote       -->
  185. <!ENTITY emsp   SDATA "[emsp  ]" -- em space -->
  186. <!ENTITY ensp   SDATA "[ensp  ]" -- en space (1/2-em) -->
  187. <!ENTITY mdash  SDATA "[ndash ]" -- em dash -->
  188. <!ENTITY ndash  SDATA "[ndash ]" -- en dash (1/2-em) -->
  189. <!ENTITY nbsp   SDATA "[nbsp  ]" -- non breaking space -->
  190. <!ENTITY shy    SDATA "[shy   ]" -- soft hyphen -->
  191. <!ENTITY copy   SDATA "[copy  ]" -- copyright sign -->
  192. <!ENTITY trade  SDATA "[trade ]" -- trade mark sign -->
  193. <!ENTITY reg    SDATA "[reg   ]" -- registered sign -->
  194.  
  195. <!--================ Entities for standard icons ==========================-->
  196.  
  197. <!-- a range of standard icons such as &folder; for use
  198.      in speeding up display of directory listings etc. -->
  199.  
  200. <!ENTITY % HTMLicons PUBLIC
  201.   "ISO 8879-1986//ENTITIES Added Latin 1//EN//">
  202. %HTMLicons;
  203.  
  204. <!--================ Entities for math symbols ============================-->
  205.  
  206. <!-- ISO subset chosen for use with the widely available Adobe math font -->
  207.  
  208. <!ENTITY % HTMLmath PUBLIC
  209.   "-//IETF//ENTITIES Math and Greek for HTML//EN">
  210. %HTMLmath;
  211.  
  212. <!--=================== Text Markup =======================================-->
  213.  
  214. <!ENTITY % font " U | S | TT | I | BIG | SMALL">
  215.  
  216. <!ENTITY % phrase "EM | STRONG | CODE | SAMP | KBD | VAR | CITE">
  217.  
  218. <!ENTITY % misc "Q | LANG | AU | DFN | PERSON | ACRONYM | ABBREV | INS | DEL">
  219.  
  220. <!ENTITY % special "TAB | MATH | A | IMG | BR | APP | INSERT">
  221.  
  222. <!ENTITY % notmath "%font | %phrase | %special | %misc">
  223.  
  224. <!ENTITY % text "#PCDATA | SUB | SUP | B | %notmath">
  225.  
  226.  
  227. <!ENTITY % pre.exclusion "TAB|MATH|IMG|BIG|SMALL|SUB|SUP|APP|INSERT">
  228.  
  229. <!ELEMENT (%font|B|%phrase|%misc) - - (%text)+>
  230. <!ATTLIST (%font|B|%phrase|%misc) %attrs;>
  231.  
  232. <!-- Subscripts and superscripts. The ALIGN attribute is only used for math -->
  233.  
  234. <!ELEMENT (SUB|SUP) - - (%text)+>
  235. <!ATTLIST (SUB|SUP)
  236.         %attrs;
  237.         align (left|center|right) #IMPLIED
  238.         >
  239.  
  240. <!-- Forced line break -->
  241.  
  242. <!ELEMENT BR    - O EMPTY>
  243. <!ATTLIST BR
  244.         %attrs;
  245.         %needs; -- for control of text flow --
  246.         >
  247.  
  248. <!-- Named left, center and right tab stops (independent of '\t' char) -->
  249.  
  250. <!ELEMENT TAB - O EMPTY>
  251. <!ATTLIST TAB
  252.         id       ID       #IMPLIED  -- defines named tab stop --
  253.         indent   NUMBER   0         -- en units before new tab stop --
  254.         to       IDREF    #IMPLIED  -- jump to named tab stop --
  255.         align   (left|center|right|decimal) left
  256.         dp      CDATA     #IMPLIED  -- decimal point e.g. dp="," --
  257.         >
  258.  
  259. <!--================== Link Markup ========================================-->
  260.  
  261. <!--
  262.      With HTML 3.0 you can use ID attributes on most elements for named
  263.      link ends. The use of the NAME attribute on anchors is deprecated.
  264.  
  265.      Do we want to support arbitrary elements for link starts? This would
  266.      involve adding HREF and related attributes to most elements.
  267. -->
  268.  
  269. <![ %HTML.Deprecated [
  270.     <!ENTITY % linkName "name CDATA #IMPLIED -- named link end --">
  271. ]]>
  272.  
  273. <!ENTITY % linkName "">
  274.  
  275.  
  276. <!ENTITY % ToolBar "home|toc|index|glossary|copyright|
  277.                     up|previous|next|help|bookmark"
  278.  
  279.         -- LINK RELationship values which are used to create toolbar
  280.            buttons or menu items for navigation, where toc stands
  281.            for table of contents and bookmark provides for an open
  282.            ended set of links, i.e. you can use multiple bookmarks
  283.            for key entry points. Use the optional TITLE attribute
  284.            to override default names.
  285.         -->
  286.  
  287. <!ENTITY % linkType "NAME"
  288.         -- A definitive list will be specified at a later date.
  289.  
  290.            They are used
  291.  
  292.                 a) by stylesheets to control how collections of
  293.                    html nodes are rendered into printed documents
  294.  
  295.                 b) for document specific toolbars/menus when used
  296.                    with the LINK element in document head:
  297.  
  298.                     "home|toc|index|glossary|copyright|
  299.                            up|previous|next|help|bookmark"
  300.  
  301.                    where toc stands for table of contents and
  302.                    bookmark provides for an open ended set of links,
  303.                    i.e. you can use several bookmarks for key entry
  304.                    points. Use the optional TITLE attribute to
  305.                    override default names.
  306.  
  307.                 c) for hypertext paths or guided tours,
  308.                    with REL=NODE and REL=PATH. 
  309.  
  310.                 d) to make a link to a style sheet, e.g. rel=style
  311.                    (used only with the LINK element).
  312.         -->
  313.  
  314.  
  315. <!ENTITY % linkExtraAttributes -- URN moved to %url.link --
  316.        "rel %linkType #IMPLIED -- forward relationship type --
  317.         rev %linkType #IMPLIED -- reversed relationship type
  318.                                   to referent data --
  319.         title   CDATA #IMPLIED -- advisory only --
  320.         methods NAMES #IMPLIED -- supported public methods of the object:
  321.                                         TEXTSEARCH, GET, HEAD, ... --
  322.         ">
  323.  
  324. <![ %HTML.Deprecated [
  325.     <!ENTITY % A.content "(%heading|%text)+">
  326. ]]>
  327.  
  328. <!ENTITY % A.content   "(%text)+">
  329.  
  330. <!ELEMENT A     - - %A.content -(A)>
  331.  
  332. <!ATTLIST A
  333.         %attrs;
  334.         href   %URI;  #IMPLIED
  335.         %url.link;    -- standard link attributes --
  336.         %linkName;     -- name attribute is deprecated; use ID instead --
  337.         shape %SHAPE; #IMPLIED -- for shaped hotzones in FIGs --
  338.         %linkExtraAttributes;
  339.         >
  340.  
  341. <!--=================== Images ============================================-->
  342.  
  343. <!-- Desired widths are used for negotiating image size
  344.      with the module responsible for painting the image.
  345.      align=left or right cause image to float to margin
  346.      and for subsequent text to wrap around image -->
  347.  
  348. <!ELEMENT IMG    - O EMPTY --  Embedded image -->
  349. <!ATTLIST IMG
  350.         %attrs;
  351.         src  %URI;  #REQUIRED  -- URI of image to embed --
  352.         %url.link;             -- standard link attributes --
  353.         alt CDATA   #IMPLIED   -- for display in place of image --
  354.         align  (top|middle|bottom|left|right) top -- relative to baseline
  355.         --         width  NUMBER #IMPLIED -- desired width in en's or pixels --
  356.         height NUMBER #IMPLIED -- desired height in en's or pixels --
  357.         units  (en|pixels) pixels -- units for width and height --
  358.         ismap (ismap) #IMPLIED -- pass clicks to server --
  359.         >
  360.  
  361. <!--=================== Paragraphs=========================================-->
  362.  
  363. <!ELEMENT P     - O (%text)+>
  364. <!ATTLIST P
  365.         %attrs;
  366.         align  (left|center|right|justify) #IMPLIED
  367.         %needs; -- for control of text flow --
  368.         nowrap (nowrap) #IMPLIED -- disable wordwrap --
  369.         >
  370.  
  371. <!--=================== Headings, Titles, Sections ========================-->
  372.  
  373. <!ELEMENT HR    - O EMPTY -- customizable horizontal rule -->
  374. <!ATTLIST HR
  375.         %attrs;
  376.         src     %URI;   #IMPLIED -- URI of custom rule graphic --
  377.         %url.link;               -- standard link attributes --
  378.         %needs; -- for control of text flow --
  379.         >
  380.  
  381. <!--
  382.   Headers can be numbered, although this is a matter for style sheets.
  383.   The style sheet controls the numbering style:
  384.  
  385.      a) whether the parent numbering is inherited, e.g.  5.i.c
  386.         where 5 is the current sequence number for H1 headers, and
  387.         1 is the number for H2 headers and 3 for H3 headers.
  388.  
  389.      b) what style is used for current sequence number
  390.         e.g. arabic, upperalpha, loweralpha, upperroman, lowerroman
  391.         or a numbering scheme appropriate for the current language
  392.  
  393.   The skip attribute is used to skip over sequence numbers for items
  394.   which have been left out of the list, e.g. skip=3 advances the
  395.   sequence number past 3 omitted items. The seqnum sets the sequence
  396.   number to a specified value. Note that the style sheet may take
  397.   advantage of the sequence number for higher level headers.
  398.  
  399.   The dingbat or src attributes may be used to specify a bullet like
  400.   image to be placed adjacent to the header. Defining this in the
  401.   header element simplifies the document markup and avoids the need
  402.   to use the clear or needs attribute in the following element to
  403.   prevent it flowing around this image.
  404. -->
  405.  
  406. <!ELEMENT ( %heading )  - -  (%text;)+>
  407. <!ATTLIST ( %heading )
  408.         %attrs;
  409.         align  (left|center|right|justify) #IMPLIED
  410.         %needs; -- for control of text flow --
  411.         seqnum   NUMBER   #IMPLIED  -- starting sequence number --
  412.         skip     NUMBER   0         -- skip seq nums for missing items --
  413.         dingbat  ENTITY   #IMPLIED  -- dingbat entity from HTMLicons --
  414.         src      %URI;  #IMPLIED  -- bullet defined by graphic --
  415.         %url.link;                  -- standard link attributes --
  416.         nowrap   (nowrap)  #IMPLIED -- disable wordwrap --
  417.         >
  418.  
  419. <!ELEMENT TITLE - -  (#PCDATA)
  420.           -- The TITLE element is not considered part of the flow of text.
  421.              It should be displayed, for example as the page header or
  422.              window title.
  423.           -->
  424.  
  425. <!--=================== Text Flows ========================================-->
  426.  
  427. <!ENTITY % block
  428.      "P | %list | DL
  429.         | %preformatted
  430.         | %blockquote
  431.         | FORM | ISINDEX | FN
  432.         | TABLE | FIG | NOTE">
  433.  
  434. <!--
  435.   ((%block)* | (%text)*) would be much nicer as it would avoid the need
  436.   for a <P> tag when all you want is a few words of text. The problem
  437.   is that it also prevents: "<LI> <P>some text" since it forbids PCDATA
  438.   and hence the white space between the <LI> and the <P>.
  439. -->
  440.  
  441. <![ %HTML.Recommended [
  442.     <!ENTITY % flow "(%block)*">
  443. ]]>
  444.  
  445. <!ENTITY % flow "(%text | %block)*">
  446.  
  447. <!ELEMENT PRE - - (%text)* -(%pre.exclusion)>
  448.  
  449. <!ATTLIST PRE
  450.         %attrs;
  451.         width NUMBER #implied
  452.         %needs; -- for control of text flow --
  453.         >
  454.  
  455. <![ %HTML.Obsoleted [
  456.  
  457. <!ENTITY % literal "CDATA"
  458.         -- special non-conforming parsing mode where
  459.            the only markup signal is the end tag
  460.            in full. This will cause problems for
  461.            standard SGML tools!
  462.         -->
  463.  
  464. <!ELEMENT XMP - -  %literal>
  465. <!ELEMENT LISTING - -  %literal>
  466. <!ELEMENT PLAINTEXT - O %literal>
  467.  
  468. ]]>
  469.  
  470. <!--=================== Lists =============================================-->
  471.  
  472. <!ELEMENT DL    - -  (LH?, (DT|DD)+) -- this is perhaps too lax? -->
  473. <!ATTLIST DL
  474.         %attrs;
  475.         %needs; -- for control of text flow --
  476.         compact (compact) #IMPLIED -- more compact style --
  477.         >
  478.  
  479. <!ELEMENT DT    - O  (%text)+>
  480. <!ELEMENT DD    - O  %flow;>
  481. <!ATTLIST (DT|DD)
  482.         %attrs;
  483.         %needs; -- for control of text flow --
  484.         >
  485.  
  486.  
  487. <!ELEMENT (OL|UL) - -  (LH?, LI+) -- should we allow a list header ? -->
  488.  
  489. <!-- style sheet controls numbering style
  490.     a) whether the parent numbering is inherited, e.g.  5.1.c
  491.     b) what style is used for current sequence number
  492.         e.g. arabic, upperalpha, loweralpha, upperroman, lowerroman
  493.         or a numbering scheme for the current language
  494. -->
  495. <!ATTLIST OL
  496.         %attrs;
  497.         %needs; -- for control of text flow --
  498.         continue (continue)  #IMPLIED   -- don't restart sequence number --
  499.         seqnum    NUMBER     #IMPLIED   -- starting sequence number --
  500.         compact (compact)    #IMPLIED   -- reduced interitem spacing --
  501.         >
  502.  
  503. <!-- Unordered lists:
  504.  
  505.     o   single or multicolumn with
  506.         horizontal or vertical wrapping
  507.  
  508.     o   plain or bulletted list items
  509.  
  510.     o   bullets can be customised via:
  511.             - entities (dingbats in HTMLicons)
  512.             - external graphic via URL
  513.             - individual attributes on LI tags
  514. -->
  515. <!ATTLIST UL
  516.         %attrs;
  517.         %needs; -- for control of text flow --
  518.         wrap (vert|horiz|none) none -- multicolumn list style --
  519.         plain   (plain)  #IMPLIED   -- suppress bullets --
  520.         dingbat  ENTITY  #IMPLIED   -- dingbat entity from HTMLicons --
  521.         src     %URI;  #IMPLIED   -- bullet defined by graphic --
  522.         %url.link;                  -- standard link attributes --
  523.         compact (compact) #IMPLIED  -- reduced interitem spacing --
  524.         >
  525.  
  526. <!ELEMENT LH - O (%text;)+ -- list header -->
  527. <!ATTLIST LH %attrs;>
  528.  
  529. <!--
  530.     For unordered lists, you can override the standard bullet with
  531.     a custom graphic specified via a URI e.g. src="splash.gif" or
  532.     a reference to one of the HTMLicons graphics e.g. dingbat=folder
  533.  
  534.     The skip attribute is used with ordered lists to skip over sequence
  535.     numbers for items which have been left out of the list, e.g. skip=3
  536.     advances the sequence number past 3 omitted items.
  537. -->
  538.  
  539. <!ELEMENT LI - O %flow; -- list item -->
  540. <!ATTLIST LI
  541.         %attrs;
  542.         %needs; -- for control of text flow --
  543.         dingbat ENTITY #IMPLIED -- dingbat entity from HTMLicons --
  544.         src  %URI; #IMPLIED   -- custom bullet graphic --
  545.         %url.link;              -- standard link attributes --
  546.         skip NUMBER 0           -- skip seq nums for missing items --
  547.         >
  548.  
  549. <!-- DIR and MENU are now subsumed by UL with type=plain. Use the
  550.      wrap attribute to control wrapping style for multicolumn lists -->
  551.  
  552. <![ %HTML.Deprecated [
  553.     <!ELEMENT (DIR|MENU) - - (LI)+ -(%block)>
  554.     <!ATTLIST (DIR|MENU)
  555.         compact (compact) #IMPLIED>
  556. ]]>
  557.  
  558. <!--=================== Document Body =====================================-->
  559.  
  560. <![ %HTML.Recommended [
  561.         <!ENTITY % body.content "(DIV|%heading|%block|HR|ADDRESS)*"
  562.         -- <h1>Heading</h1>
  563.            <p>Text ...
  564.                 is preferred to
  565.            <h1>Heading</h1>
  566.            Text ...
  567.         -->
  568. ]]>
  569.  
  570. <!ENTITY % body.content "(DIV | %heading | %text | %block | HR | ADDRESS)*">
  571.  
  572. <!ELEMENT BODY O O  (BANNER?, %body.content) +(SPOT)>
  573. <!ATTLIST BODY
  574.         %attrs;
  575.         background %URI; #IMPLIED  -- texture tile for document background --
  576.         >
  577.  
  578. <!-- 
  579.   The BANNER element is used for a banner section which appears at
  580.   the top of the window and doesn't scroll with window contents.
  581.   This can be used for corporate logos, copyright statements and
  582.   disclaimers, as well as customized navigation/search controls.
  583. -->
  584. <!ELEMENT BANNER - - %body.content>
  585. <!ATTLIST BANNER %attrs; >
  586.  
  587. <!-- SPOT is used to insert IDs at arbitrary places
  588.      e.g. for end points of a marked range (see RANGE) -->
  589. <!ELEMENT SPOT - O EMPTY>
  590. <!ATTLIST SPOT id ID #REQUIRED>
  591.  
  592. <!ELEMENT (%blockquote) - - (%body.content, CREDIT?)>
  593. <!ATTLIST (%blockquote)
  594.         %attrs;
  595.         %needs; -- for control of text flow --
  596.         nowrap   (nowrap)  #IMPLIED -- disable wordwrap --
  597.         >
  598.  
  599. <!ENTITY % address.content "((%text;)* | P*)">
  600.  
  601. <!ELEMENT ADDRESS - - %address.content>
  602. <!ATTLIST ADDRESS
  603.         %attrs;
  604.         %needs; -- for control of text flow --
  605.         >
  606.         
  607.  
  608. <!ELEMENT APP - O     EMPTY> 
  609. <!ATTLIST APP    
  610.     class CDATA #REQUIRED
  611.     src %URI; #IMPLIED
  612.     align (bottom|top|middle) #IMPLIED
  613.     width NUMBER #IMPLIED
  614.     height NUMBER #IMPLIED
  615.     >
  616.  
  617. <!--
  618.   DIV can be used with the CLASS attribute to represent different
  619.   kinds of container, e.g. chapter, section, abstract, appendix.
  620. -->
  621.  
  622. <!ELEMENT DIV - - %body.content>
  623. <!ATTLIST DIV
  624.         %attrs;
  625.         %needs; -- for control of text flow --
  626.         align   (left|center|right) left -- alignment of following text --
  627.         nowrap   (nowrap)  #IMPLIED -- disable wordwrap --
  628.         >
  629.  
  630. <!-- Insert tag -->
  631. <!-- Content model entities imported from parent DTD:
  632.  
  633.   %body.content allows inserts to contain headers, paras,
  634.   lists, form elements and even arbitrarily nested inserts.
  635. -->
  636.  
  637. <!ENTITY % Length "CDATA" -- standard length value -->
  638. <!ENTITY % URL "CDATA" -- standard length value -->
  639. <!ENTITY % Align "(top|middle|bottom|left|center|right)">
  640.  
  641. <!-- INSERT is a character-like element for inserting objects -->
  642. <!ELEMENT insert - - (param*, %body.content)>
  643. <!ATTLIST insert
  644.         %attrs      -- id, class, style, lang, dir --
  645.         data    %URL     #IMPLIED   -- ref to object's data --
  646.         code    %URL     #IMPLIED   -- ref to object's code --
  647.         classid %URL     #IMPLIED   -- object's UUID --
  648.         type    CDATA    #IMPLIED   -- Internet media type --
  649.         align   %Align   #IMPLIED   -- positioning inside document --
  650.         height  %Length  #IMPLIED   -- suggested height --
  651.         width   %Length  #IMPLIED   -- suggested width --
  652.         border  %Length  #IMPLIED   -- suggested link border width --
  653.         hspace  %Length  #IMPLIED   -- suggested horizontal gutter --
  654.         vspace  %Length  #IMPLIED   -- suggested vertical gutter --
  655.         usemap  %URL     #IMPLIED   -- ref to image map --
  656.         ismap   (ismap)  #IMPLIED   -- use server image map --
  657.         >
  658.  
  659. <!-- the BODYTEXT element is needed to avoid problems with
  660.       SGML mixed content, but is never used in actual documents -->
  661. <!ELEMENT bodytext O O %body.content>
  662.  
  663. <!ELEMENT param - O EMPTY -- named property value -->
  664. <!ATTLIST param
  665.         name    CDATA    #REQUIRED  -- property name --
  666.         value   CDATA    #IMPLIED   -- property value --
  667.         valueref  %URL   #IMPLIED   -- ref to object ALIAS --
  668.         type    CDATA    #IMPLIED   -- Internet media type --
  669.         >
  670.  
  671. <!-- ALIAS is allowed anywhere in document HEAD and BODY
  672.      it defines an alias for an object without inserting it -->
  673. <!ELEMENT alias - - (param*, alias?)>
  674. <!ATTLIST alias
  675.         id      ID       #REQUIRED  -- defines name for alias --
  676.         data    %URL     #IMPLIED   -- ref to object's data --
  677.         code    %URL     #IMPLIED   -- ref to object's code --
  678.         classid %URL     #IMPLIED   -- object's UUID --
  679.         type    CDATA    #IMPLIED   -- Internet media type --
  680.         >
  681.  
  682. <!--================ Forms ===============================================-->
  683.  
  684. <!--
  685.     As HTML 2.0 plus a few extensions:
  686.  
  687.         a)  A RANGE control which varies between pair of values
  688.             specified with the size attribute, e.g. SIZE="1, 10"
  689.  
  690.         b)  FILE widget for uploading one or more files to a server
  691.  
  692.         c)  SCRIBBLE on image widget that sends the "ink" to the server
  693.  
  694.         d)  AUDIO widget for playing and recording audio samples
  695.  
  696.         e)  SUBMIT/RESET buttons can now be customised with an image.
  697.             This subsumes the IMAGE type which is now deprecated.
  698.  
  699.         f)  Graphical SELECTion menus are now supported, using
  700.             the new SHAPE attribute on OPTION elements.
  701.  
  702.     Further extensions are in the pipeline (e.g. table entry,
  703.     multiple data formats for textarea fields and client-side
  704.     scripts with custom widgets) but will have to wait until
  705.     the backlog of implementation work diminishes.
  706. -->
  707.  
  708. <!ELEMENT FORM - - %body.content -(FORM) +(INPUT|SELECT|TEXTAREA)>
  709. <!ATTLIST FORM
  710.         action %URI; #REQUIRED -- server-side form handler --
  711.         method (%HTTP-Method) GET -- see HTTP specification --
  712.         enctype %Content-Type; "application/x-www-form-urlencoded"
  713.         script %URI; #IMPLIED -- link to client-side script --
  714.         >
  715.  
  716. <![ %HTML.Deprecated [
  717.     <!ENTITY % InputType "(TEXT | PASSWORD | CHECKBOX | RADIO | SUBMIT | RESET
  718.                    | RANGE | AUDIO | FILE | SCRIBBLE | HIDDEN | IMAGE)">
  719. ]]>
  720.  
  721. <!ENTITY % InputType "(TEXT | PASSWORD | CHECKBOX | RADIO | SUBMIT | RESET
  722.                    | RANGE | AUDIO | FILE | SCRIBBLE | HIDDEN)">
  723.  
  724. <!ELEMENT INPUT - O EMPTY>
  725. <!ATTLIST INPUT
  726.         %attrs;
  727.         type %InputType TEXT
  728.         name  CDATA #IMPLIED     -- required for all but submit and reset --
  729.         value CDATA #IMPLIED
  730.         src   %URI;  #IMPLIED     -- for fields with background images --
  731.         %url.link;               -- standard link attributes --
  732.         checked (checked) #IMPLIED -- for radio buttons and check boxes --
  733.         size CDATA #IMPLIED    -- like NUMBERS,
  734.                                   but delimited with comma, not space --
  735.         maxlength NUMBER #IMPLIED
  736.         align  (top|middle|bottom|left|right) top
  737.         >
  738.  
  739. <!--
  740.   SRC attribute added for graphical selection menus
  741.   The WIDTH, HEIGHT and UNITS attributes apply to the
  742.   image specified by the SRC attribute.
  743.  -->
  744.  
  745. <!ELEMENT SELECT - - (OPTION+) -(INPUT|TEXTAREA|SELECT)>
  746. <!ATTLIST SELECT
  747.         %attrs;
  748.         name CDATA #REQUIRED
  749.         multiple (multiple) #IMPLIED
  750.         src  %URI;  #IMPLIED    -- for graphical selection menus --
  751.         %url.link;             -- standard link attributes --
  752.         width  NUMBER #IMPLIED -- desired width of in en's or pixels --
  753.         height NUMBER #IMPLIED -- desired height in en's or pixels --
  754.         units  (en|pixels) pixels -- units for width and height --
  755.         align  (top|middle|bottom|left|right) top
  756.         >
  757.  
  758. <!ELEMENT OPTION - O (#PCDATA)>
  759. <!ATTLIST OPTION
  760.         %attrs;
  761.         selected (selected) #IMPLIED
  762.         value  CDATA  #IMPLIED -- default to element content --
  763.         shape %SHAPE; #IMPLIED -- for graphical selection menus --
  764.         >
  765.  
  766. <!--
  767.   Multi-line text input field. align=left or right
  768.   causes the field to float to margin and for
  769.   subsequent text to wrap around the field.
  770. -->
  771.      
  772. <!ELEMENT TEXTAREA - - (#PCDATA) -(INPUT|TEXTAREA|SELECT)>
  773. <!ATTLIST TEXTAREA
  774.         %attrs;
  775.         name CDATA #REQUIRED
  776.         rows NUMBER #REQUIRED
  777.         cols NUMBER #REQUIRED
  778.         align  (top|middle|bottom|left|right) top
  779.         >
  780. <!--======================= Captions ======================================-->
  781.  
  782. <!ELEMENT CAPTION - - (%text;)+ -- table or figure caption -->
  783. <!ATTLIST CAPTION
  784.         %attrs;
  785.         align (top|bottom|left|right) #IMPLIED
  786.         >
  787. <!--======================= Tables ========================================-->
  788. <!--
  789.     Tables and figures can be aligned in several ways:
  790.  
  791.     bleedleft   flush left with the left (window) border
  792.     left        flush left with the left text margin
  793.     center      centered (text flow is disabled for this mode)
  794.     right       flush right with the right text margin
  795.     bleedright  flush right with the right (window) border
  796.     justify     when applicable the table/figure should stretch
  797.                 to fill space between the text margins
  798.  
  799.     Note: text will flow around the table or figure if the browser
  800.     judges there is enough room and the alignment is not centered
  801.     or justified. The table or figure may itself be part of the
  802.     text flow around some earlier figure. You can in this case use
  803.     the clear or needs attributes to move the new table or figure
  804.     down the page beyond the obstructing earlier figure. Similarly,
  805.     you can use the clear or needs attributes with other elements
  806.     such as headers and lists to move them further down the page.
  807. -->
  808.  
  809. <!ENTITY % block.align
  810.         "align  (bleedleft|left|center|right|bleedright|justify) center">
  811.  
  812. <!-- Content model entities imported from parent DTD:
  813.  
  814.   %body.content; allows table cells to contain headers, paras,
  815.   lists, form elements and even arbitrarily nested tables.
  816.  
  817.   %text; is text characters, including character entities and
  818.   character emphasis elements, IMG and anchors
  819. -->
  820.  
  821. <!--
  822.  The BORDER attribute sets the thickness of the frame around the
  823.  table. The default units are screen pixels.
  824.  
  825.  The FRAME attribute specifies which parts of the frame around
  826.  the table should be rendered. The values are not the same as
  827.  CALS to avoid a name clash with the VALIGN attribute.
  828.  
  829.  The value "border" is included for backwards compatibility with
  830.  <TABLE BORDER> which yields frame=border and border=implied
  831.  For <TABLE BORDER=1> you get border=1 and frame=implied. In this
  832.  case, its appropriate to treat this as frame=border for backwards
  833.  compatibility with deployed browsers.
  834. -->
  835.  
  836. <!ENTITY % Frame "(void|above|below|hsides|lhs|rhs|vsides|box|border)">
  837.  
  838. <!--
  839.  The RULES attribute defines which rules to draw between cells:
  840.  
  841.  If RULES is absent then assume:
  842.      "none" if BORDER is absent or BORDER=0 otherwise "all"
  843. -->
  844.  
  845. <!ENTITY % Rules "(none | basic | rows | cols | all)">
  846.         
  847. <!-- horizontal placement of table relative to window -->
  848. <!ENTITY % Where "(left|center|right)">
  849. <!--NewPage-->
  850. <!-- horizontal alignment attributes for cell contents -->
  851. <!ENTITY % cell.halign
  852.         "align  (left|center|right|justify|char) #IMPLIED
  853.          char    CDATA   #IMPLIED -- alignment char, e.g. char=':' --
  854.          charoff CDATA   #IMPLIED -- offset for alignment char --"
  855.         >
  856.  
  857. <!-- vertical alignment attributes for cell contents -->
  858. <!ENTITY % cell.valign
  859.         "valign  (top|middle|bottom|baseline)  #IMPLIED"
  860.         >
  861.  
  862. <!ELEMENT table - - (caption?, (col|colgroup)*, thead?, tfoot?, tbody+)>
  863. <!ELEMENT thead - O (tr+)>
  864. <!ELEMENT tfoot - O (tr+)>
  865. <!ELEMENT tbody O O (tr+)>
  866. <!ELEMENT col - O EMPTY>
  867. <!ELEMENT tr - O (th|td)+>
  868. <!ELEMENT (th|td) - O %body.content>
  869. <!ATTLIST table                    -- table element --
  870.         %attrs;                    -- id, lang, style, dir and class --
  871.         align   %Where;  #IMPLIED  -- table position relative to window --
  872.         width   CDATA    #IMPLIED  -- table width relative to window --
  873.         cols    NUMBER   #IMPLIED  -- used for immediate display mode --
  874.         border  CDATA    #IMPLIED  -- controls frame width around table --
  875.         frame   %Frame;  #IMPLIED  -- which parts of table frame to include --
  876.         rules   %Rules;  #IMPLIED  -- rulings between rows and cols --
  877.         cellspacing CDATA #IMPLIED -- spacing between cells --
  878.         cellpadding CDATA #IMPLIED -- spacing within cells --
  879.         >
  880.  
  881. <!-- ALIGN is used here for compatibility with deployed browsers -->
  882.  
  883. <!--
  884. COLGROUP groups a set of COL elements. It allows you to group
  885. several columns together. COL elements contained within a COLGROUP
  886. element do not themselves define column groups.
  887. -->
  888.  
  889. <!ELEMENT colgroup - O (col+)>
  890. <!ATTLIST colgroup
  891.         %attrs;                    -- id, lang, style, dir and class --
  892.         %cell.halign;              -- horizontal alignment in cells --
  893.         %cell.valign;              -- vertical alignment in cells --
  894.         >
  895.  
  896. <!--
  897.  COL elements define the alignment properties for cells in a given
  898.  column or spanned columns. The WIDTH attribute specifies the
  899.  width of the columns, e.g.
  900.  
  901.      width=64        width in screen pixels
  902.      width=0.5*      relative width of 0.5
  903. -->
  904.  
  905. <!ATTLIST col                      -- column groups and properties --
  906.         %attrs;                    -- id, lang, style, dir and class --
  907.         span    NUMBER   1         -- number of columns spanned by group --
  908.         width   CDATA    #IMPLIED  -- relative width e.g. 2.5 --
  909.         %cell.halign;              -- horizontal alignment in cells --
  910.         %cell.valign;              -- vertical alignment in cells --
  911.         >
  912.  
  913. <!--
  914.     Use THEAD to duplicate headers when breaking table
  915.     across page boundaries, or for static headers when
  916.     body sections are rendered in scrolling panel.
  917.  
  918.     Use TFOOT to duplicate footers when breaking table
  919.     across page boundaries, or for static footers when
  920.     body sections are rendered in scrolling panel.
  921.  
  922.     Use multiple TBODY sections when rules are needed
  923.     between groups of table rows.
  924. -->
  925. <!ATTLIST (thead|tbody|tfoot)      -- table section --
  926.         %attrs;                    -- id, lang, style, dir and class --
  927.         %cell.halign;              -- horizontal alignment in cells --
  928.         %cell.valign;              -- vertical alignment in cells --
  929.         >
  930.  
  931. <!ATTLIST tr                       -- table row --
  932.         %attrs;                    -- id, lang, style, dir and class --
  933.         %cell.halign;              -- horizontal alignment in cells --
  934.         %cell.valign;              -- vertical alignment in cells --
  935.         >
  936.  
  937. <!ATTLIST (th|td)                  -- header or data cell --
  938.         %attrs;                    -- id, lang, style, dir and class --
  939.         axis    CDATA    #IMPLIED  -- defaults to cell content --
  940.         axes    CDATA    #IMPLIED  -- list of axis names --
  941.         nowrap (nowrap)  #IMPLIED  -- suppress word wrap --
  942.         rowspan NUMBER   1         -- number of rows spanned by cell --
  943.         colspan NUMBER   1         -- number of cols spanned by cell --
  944.         %cell.halign;              -- horizontal alignment in cells --
  945.         %cell.valign;              -- vertical alignment in cells --
  946.         >
  947.  
  948. <!--====================== Figures ========================================-->
  949.  
  950. <!--
  951.   The element contains text for use in non-graphical displays. Note that
  952.   you can use the shape attribute in anchors to specify hotzones on images.
  953.   This provides for local processing of pointer clicks and a unified method
  954.   for dealing with graphical and non-graphical displays.
  955.  
  956.   Text is flowed around figures when the figure is left or right aligned.
  957.   You can request the browser to move down until there is enough room for
  958.   the next element, see the CLEAR and NEED attributes (in %needs)
  959.  
  960.   Figures offer a path towards embedding arbitrary information formats
  961.   via some kind of OLE/OpenDoc mechanism.
  962. -->
  963.  
  964. <!ELEMENT FIG - - (OVERLAY*, CAPTION?, %body.content;, CREDIT?) -(FIG|IMG)>
  965. <!ATTLIST FIG
  966.         %attrs;
  967.         %needs;                  -- for control of text flow --
  968.         src  %URI;  #REQUIRED    -- URI of document to embed --
  969.         %url.link;               -- standard link attributes --
  970.         %block.align;            -- horizontal alignment --
  971.         noflow (noflow) #IMPLIED -- noflow around figure --
  972.         width  NUMBER #IMPLIED   -- desired width in units --
  973.         height NUMBER #IMPLIED   -- desired height in units --
  974.         units (en|pixels) pixels -- specifies units as en's or pixels --
  975.         imagemap %URI; #IMPLIED -- pass background clicks to server --
  976.         >
  977.  
  978. <!--
  979.     Figure overlays. When combined with local caching, overlays
  980.     provide a cheap way of modifying a larger base image sent as
  981.     part of a previous page.
  982. -->
  983.  
  984. <!ELEMENT OVERLAY - O EMPTY -- image overlay -->
  985. <!ATTLIST OVERLAY
  986.         src  %URI;  #REQUIRED    -- URI of image overlay --
  987.         %url.link;               -- standard link attributes --
  988.         units (en|pixels) pixels -- specifies units as en's or pixels --
  989.         x      NUMBER   0        -- offset from left in units --
  990.         y      NUMBER   0        -- offset from top in units --
  991.         width  NUMBER #IMPLIED   -- desired width in units --
  992.         height NUMBER #IMPLIED   -- desired height in units --
  993.         imagemap %URI; #IMPLIED -- pass background clicks to server --
  994.         >
  995.  
  996. <!ELEMENT CREDIT - - (%text;)* -- source of image -->
  997. <!ATTLIST CREDIT
  998.         %attrs;
  999.         >
  1000.  
  1001. <!--======================== Notes ========================================-->
  1002.  
  1003. <!--
  1004. The NOTE element is used for admonishments. The CLASS attribute
  1005. is used to differentiate NOTE's, e.g. Note, Caution or Warning.
  1006. -->
  1007.  
  1008. <!ELEMENT NOTE - - %body.content; -- admonishment -->
  1009. <!ATTLIST NOTE
  1010.         %attrs;
  1011.         src %URI;   #IMPLIED  -- URI of custom graphic --
  1012.         %url.link;            -- standard link attributes --
  1013.         %needs; -- for control of text flow --
  1014.         >
  1015.  
  1016. <!--======================== Footnotes ====================================-->
  1017.  
  1018. <!--
  1019. Typically rendered as popup note. These elements are referenced
  1020. by hypertext links specified with the anchor element.
  1021. -->
  1022. <!ELEMENT FN - - %body.content;>
  1023. <!ATTLIST FN %attrs;>
  1024.  
  1025. <!--======================== Math  ========================================-->
  1026.  
  1027. <!-- Use     etc for greater control of spacing. -->
  1028.  
  1029. <!-- Subscripts and Superscripts
  1030.  
  1031.   <SUB> and <SUP> are used for subscripts and superscripts.
  1032.  
  1033.                                           i j
  1034.       X <SUP>i</SUP>Y<SUP>j</SUP>  is   X  Y
  1035.  
  1036.   i.e. the space following the X disambiguates the binding.
  1037.   The align attribute can be used for horizontal alignment,
  1038.   e.g. to explicitly place an index above an element:
  1039.                                               i
  1040.         X<sup align=center>i</sup>  produces  X
  1041.  
  1042. Short references are defined for superscripts, subscripts and boxes
  1043. to save typing when manually editing HTML math, e.g.
  1044.  
  1045.       x^2^    is mapped to   x<sup>2</sup>
  1046.       y_z_    is mapped to   y<sub>z</sub>
  1047.       {a+b}   is mapped to   <box>a + b</box>
  1048.  
  1049. Note that these only apply within the MATH element and can't be
  1050. used in normal text!
  1051. -->
  1052. <!ENTITY REF1   STARTTAG   "SUP">
  1053. <!ENTITY REF2   ENDTAG     "SUP">
  1054. <!ENTITY REF3   STARTTAG   "SUB">
  1055. <!ENTITY REF4   ENDTAG     "SUB">
  1056. <!ENTITY REF5   STARTTAG   "BOX">
  1057. <!ENTITY REF6   ENDTAG     "BOX">
  1058.  
  1059. <!USEMAP MAP1   MATH>
  1060. <!USEMAP MAP2   SUP>
  1061. <!USEMAP MAP3   SUB>
  1062. <!USEMAP MAP4   BOX>
  1063.  
  1064. <!SHORTREF MAP1 "^" REF1
  1065.                 "_" REF3
  1066.                 "{" REF5 >
  1067.  
  1068. <!SHORTREF MAP2 "^" REF2
  1069.                 "_" REF3
  1070.                 "{" REF5 >
  1071.  
  1072. <!SHORTREF MAP3 "_" REF4
  1073.                 "^" REF1
  1074.                 "{" REF5 >
  1075.  
  1076. <!SHORTREF MAP4 "}" REF6
  1077.                 "^" REF1
  1078.                 "_" REF3
  1079.                 "{" REF5 >
  1080.  
  1081. <!--
  1082.  The inclusion of %math and exclusion of %notmath is used here
  1083.  to alter the content model for the B, SUB and SUP elements,
  1084.  to limit them to formulae rather than general text elements.
  1085. -->
  1086.  
  1087. <!ENTITY % mathvec "VEC|BAR|DOT|DDOT|HAT|TILDE" -- common accents -->
  1088. <!ENTITY % mathface "B|T|BT" -- control of font face -->
  1089. <!ENTITY % math "BOX|ABOVE|BELOW|%mathvec|ROOT|SQRT|ARRAY|SUB|SUP|%mathface">
  1090. <!ENTITY % formula "#PCDATA|%math">
  1091.  
  1092. <!ELEMENT MATH - - (#PCDATA)* -(%notmath) +(%math)>
  1093. <!ATTLIST MATH
  1094.         id      ID      #IMPLIED
  1095.         model   CDATA   #IMPLIED>
  1096.  
  1097. <!-- The BOX element acts as brackets. Delimiters are optional and
  1098.      stretch to match the height of the box. The OVER element is used
  1099.      when you want a line between numerator and denominator. This line
  1100.      is suppressed with the alternative ATOP element. CHOOSE acts like
  1101.      ATOP but adds enclosing round brackets as a convenience for binomial
  1102.      coefficients. Note the use of { and } as shorthand for <BOX> and
  1103.      </BOX> respectively:
  1104.  
  1105.                            1 + X
  1106.      {1 + X<OVER>Y}  is   _______
  1107.                              Y
  1108.  
  1109.                                  a + b
  1110.      {a + b<ATOP>c - d} is  
  1111.                                  c - d
  1112.  
  1113.      The delimiters are represented using the LEFT and RIGHT
  1114.      elements as in:
  1115.  
  1116.      {[<LEFT>x + y<RIGHT>]}   is   [ x + y ]
  1117.      {(<LEFT>a<RIGHT>]}       is   (a]
  1118.      {||<LEFT>a<RIGHT>||}     is   || a ||
  1119.  
  1120.      Use { and } for "{" and "}" respectively as
  1121.      these symbols are used as shorthand for BOX, e.g.
  1122.  
  1123.      {{<LEFT>a+b<RIGHT>}}  is  {a+b}
  1124.  
  1125.      You can stretch definite integrals to match the integrand, e.g.
  1126.  
  1127.      {∫<SUB>a</SUB><SUP>b</SUP><LEFT>{f(x)<over>1+x} dx}
  1128.  
  1129.             b
  1130.             /  f(x)
  1131.             | ----- dx
  1132.             / 1 + x
  1133.             a
  1134.  
  1135.      Note the complex content model for BOX is a work around
  1136.      for the absence of support for infix operators in SGML.
  1137.  
  1138.      You can get oversize delimiters with the SIZE attribute,
  1139.      for example <BOX SIZE=large>(<LEFT>...<RIGHT>)</BOX>
  1140.  
  1141.      Note that the names of common functions are recognized
  1142.      by the parser without the need to use "&" and ";" around
  1143.      them, e.g. int, sum, sin, cos, tan, ...
  1144. -->
  1145.  
  1146. <!ELEMENT BOX - - ((%formula)*, (LEFT, (%formula)*)?,
  1147.                    ((OVER|ATOP|CHOOSE), (%formula)*)?,
  1148.                    (RIGHT, (%formula)*)?)>
  1149. <!ATTLIST BOX
  1150.         size  (normal|medium|large|huge) normal -- oversize delims -->
  1151.  
  1152. <!ELEMENT (OVER|ATOP|CHOOSE|LEFT|RIGHT) - O EMPTY>
  1153.  
  1154. <!-- Horizontal line drawn ABOVE contents
  1155.      The symbol attribute allows authors to supply
  1156.      an entity name for an accent, arrow symbol etc.
  1157.      Generalisation of LaTeX's overline command.
  1158.  -->
  1159.  
  1160. <!ELEMENT ABOVE - - (%formula)+>
  1161. <!ATTLIST ABOVE symbol ENTITY #IMPLIED>
  1162.  
  1163. <!-- Horizontal line drawn BELOW contents
  1164.      The symbol attribute allows authors to 
  1165.      supply an entity name for an arrow symbol etc.
  1166.      Generalisation of LaTeX's underline command.
  1167.  -->
  1168.  
  1169. <!ELEMENT BELOW - - (%formula)+>
  1170. <!ATTLIST BELOW symbol ENTITY #IMPLIED>
  1171.  
  1172. <!-- Convenience tags for common accents:
  1173.      vec, bar, dot, ddot, hat and tilde
  1174. -->
  1175.  
  1176. <!ELEMENT (%mathvec) - - (%formula)+>
  1177.  
  1178. <!--
  1179.   T and BT are used to designate terms which should
  1180.   be rendered in an upright font (& bold face for BT)
  1181. -->
  1182.  
  1183. <!ELEMENT (T|BT) - - (%formula)+>
  1184. <!ATTLIST (T|BT) class NAMES #IMPLIED>
  1185.  
  1186. <!-- Roots  e.g. <ROOT>3<OF>1+x</ROOT> -->
  1187.  
  1188. <!ELEMENT ROOT - - ((%formula)+, OF, (%formula)+)>
  1189. <!ELEMENT OF - O (%formula)* -- what the root applies to -->
  1190.  
  1191. <!ELEMENT SQRT - - (%formula)* -- square root convenience tag -->
  1192.  
  1193. <!-- LaTeX like arrays. The COLDEF attribute specifies
  1194.      a single capital letter for each column determining
  1195.      how the column should be aligned, e.g. coldef="CCC"
  1196.  
  1197.         "L"     left
  1198.         "C"     center
  1199.         "R"     right
  1200.         
  1201.      An optional separator letter can occur between columns
  1202.      and should be one of + - or =, e.g. "C+C+C+C=C".
  1203.      Whitespace within coldef is ignored. By default, the
  1204.      columns are all centered.
  1205.      
  1206.      The ALIGN attribute alters the vertical position of the
  1207.      array as compared with preceding and following expressions.
  1208.  
  1209.      Use LDELIM and RDELIM attributes for delimiter entities.
  1210.      When the LABELS attribute is present, the array is
  1211.      displayed with the first row and the first column as
  1212.      labels displaced from the other elements. In this case,
  1213.      the first element of the first row should normally be
  1214.      left blank.
  1215.  
  1216.      Use &vdots; &cdots; and &ddots; for vertical, horizontal
  1217.      and diagonal ellipsis dots. Use &dotfill; to fill an array
  1218.      cell with horizontal dots (e.g. for a full row).
  1219.      Note &ldots; places the dots on the baseline, while &cdots;
  1220.      places them higher up.
  1221. -->
  1222.  
  1223. <!ELEMENT ARRAY - - (ROW)+>
  1224. <!ATTLIST ARRAY
  1225.         align (top|middle|bottom) middle -- vertical alignment --
  1226.         coldef  CDATA   #IMPLIED  -- column alignment and separator --
  1227.         ldelim  NAMES   #IMPLIED  -- stretchy left delimiter --
  1228.         rdelim  NAMES   #IMPLIED  -- stretchy right delimiter --
  1229.         labels (labels) #IMPLIED  -- TeX's \bordermatrix style -->
  1230.  
  1231. <!ELEMENT ROW - O (ITEM)*>
  1232. <!ELEMENT ITEM - O (%formula)*>
  1233. <!ATTLIST ITEM
  1234.         align   CDATA  #IMPLIED  -- override coldef alignment --
  1235.         colspan NUMBER 1         -- merge columns as per TABLE --
  1236.         rowspan NUMBER 1         -- merge rows as per TABLE -->
  1237.  
  1238. <!--================ Document Head ========================================-->
  1239.  
  1240. <![ %HTML.Deprecated [
  1241.     <!ENTITY % head.content "TITLE & ISINDEX? & BASE? & STYLE?
  1242.                               & META* & LINK* & RANGE* & NEXTID?">
  1243. ]]>
  1244.  
  1245. <!ENTITY % head.nextid "">
  1246.  
  1247. <!ENTITY % head.content "TITLE & ISINDEX? & BASE? & STYLE?
  1248.                               & META* & LINK* & RANGE*">
  1249.  
  1250. <!ELEMENT HEAD O O  (%head.content)>
  1251.  
  1252. <!ELEMENT LINK - O EMPTY>
  1253. <!ATTLIST LINK
  1254.         href %URI; #REQUIRED
  1255.         %linkExtraAttributes; >
  1256.         
  1257. <!ELEMENT RANGE - O EMPTY>
  1258. <!ATTLIST RANGE
  1259.         id    ID    #IMPLIED  -- for naming marked range --
  1260.         class CDATA #IMPLIED  -- for subclassing --
  1261.         from  IDREF #REQUIRED -- start of marked range --
  1262.         until IDREF #REQUIRED -- end of marked range --
  1263.         >
  1264.  
  1265. <!ELEMENT ISINDEX - O EMPTY>
  1266. <!ATTLIST ISINDEX
  1267.         href   %URI;  #IMPLIED -- server handling queries --
  1268.         prompt CDATA #IMPLIED -- prompt message -->
  1269.  
  1270. <!--
  1271.     The BASE element gives the base URL for
  1272.     dereferencing relative URLs, e.g.
  1273.  
  1274.          <BASE href="http://foo.com/images">
  1275.          ...
  1276.          <IMG SRC="bar.gif">
  1277.  
  1278.     The image is deferenced to
  1279.  
  1280.          http://foo.com/images/bar.gif
  1281. -->
  1282.  
  1283. <!ELEMENT BASE - O EMPTY>
  1284. <!ATTLIST BASE
  1285.         id   ID    #IMPLIED
  1286.         href %URI; #REQUIRED
  1287.         >
  1288.  
  1289. <![ %HTML.Deprecated [
  1290.     <!ELEMENT NEXTID - O EMPTY>
  1291.     <!ATTLIST NEXTID N CDATA #REQUIRED>
  1292. ]]>
  1293.  
  1294. <!ELEMENT META - O EMPTY    -- Generic Metainformation -->
  1295. <!ATTLIST META
  1296.         http-equiv  NAME    #IMPLIED  -- HTTP response header name  --
  1297.         name        NAME    #IMPLIED  -- metainformation name       --
  1298.         content     CDATA   #REQUIRED -- associated information     --
  1299.         >
  1300.  
  1301. <!--
  1302.     A style sheet can be associated with the document using the
  1303.     LINK element, e.g. <LINK rel=style href="housestyle.dsssl">.
  1304.     Style overrides can be placed in the document head using the
  1305.     STYLE element, e.g.
  1306.  
  1307.         <style notation=dsssl-lite>
  1308.            dsss-lite stuff
  1309.         </style>
  1310.  
  1311.     Later on in the document you can use:
  1312.  
  1313.         <h2 class=bigcaps>Header with bigger than normal capitals</h2>
  1314.         <p class=abstract>A paragraph with a unique style of its own
  1315.         ...
  1316.     
  1317.     Statements in the given style notation 
  1318.         
  1319.     The tag names, class and id attributes are used in the style sheet
  1320.     notation to describe how to render matching elements.
  1321. -->
  1322.  
  1323. <!ENTITY % style-notations "dsssl-lite | w3c-style">
  1324. <!-- <!NOTATION dsssl-lite PUBLIC
  1325.       "ISO/IEC 10179:1995//NOTATION DSSSL Style Language//EN">
  1326.       
  1327. <!NOTATION w3c-style PUBLIC "-//IETF//W3C Style Language//EN"> -->
  1328.  
  1329. <!ELEMENT STYLE - O (#PCDATA)>
  1330. <!ATTLIST STYLE
  1331.     notation NOTATION (%style-notations;) #REQUIRED
  1332. >
  1333.  
  1334. <!--================ Document Structure ===================================-->
  1335.  
  1336. <!ENTITY % html.content "HEAD, BODY">
  1337.  
  1338. <!ELEMENT HTML O O  (%html.content)>
  1339. <!ENTITY % version.attr 'VERSION CDATA #FIXED "%HTML.Version;"'>
  1340.  
  1341. <!-- suggested roles are: TOC, DOC, DOCPART, HITLIST, DIALOG -->
  1342.  
  1343. <!ATTLIST HTML
  1344.         %version.attr;         -- report DTD version to application --
  1345.         urn  CDATA   #IMPLIED  -- universal resource name for this document --
  1346.         role NAMES   #IMPLIED  -- role of this document, eg table of contents --
  1347.         >
  1348.